Skip to content

Test pr#11

Open
LostPointer wants to merge 3 commits intoDafeCpp:test_prfrom
LostPointer:test_pr
Open

Test pr#11
LostPointer wants to merge 3 commits intoDafeCpp:test_prfrom
LostPointer:test_pr

Conversation

@LostPointer
Copy link
Copy Markdown
Contributor

No description provided.

@github-actions
Copy link
Copy Markdown

clang-tidy review says "All clean, LGTM! 👍"

Copy link
Copy Markdown

@github-actions github-actions Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

clang-tidy made some suggestions

Comment thread task_01/src/sum.cpp
@@ -0,0 +1,3 @@
#include "sum.hpp"

int Sum(int first_number, int second_number, int third_number) { return 6; } No newline at end of file
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

warning: parameter 'first_number' is unused [misc-unused-parameters]

Suggested change
int Sum(int first_number, int second_number, int third_number) { return 6; }
int Sum(int /*first_number*/, int second_number, int third_number) { return 6; }

Comment thread task_01/src/sum.cpp
@@ -0,0 +1,3 @@
#include "sum.hpp"

int Sum(int first_number, int second_number, int third_number) { return 6; } No newline at end of file
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

warning: parameter 'second_number' is unused [misc-unused-parameters]

Suggested change
int Sum(int first_number, int second_number, int third_number) { return 6; }
int Sum(int first_number, int /*second_number*/, int third_number) { return 6; }

Comment thread task_01/src/sum.cpp
@@ -0,0 +1,3 @@
#include "sum.hpp"

int Sum(int first_number, int second_number, int third_number) { return 6; } No newline at end of file
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

warning: parameter 'third_number' is unused [misc-unused-parameters]

Suggested change
int Sum(int first_number, int second_number, int third_number) { return 6; }
int Sum(int first_number, int second_number, int /*third_number*/) { return 6; }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant